-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
from pathlib import Path
pkg_name = 'contextdata'
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
license_text = (this_directory/"LICENSE").read_text()
version = (this_directory/"VERSION").read_text().rstrip()
setup(name=pkg_name,
version=version,
description="a package to manage contextual data across your program, and output it to logs",
long_description=long_description,
long_description_content_type='text/markdown',
license=license_text,
author='Aviv Salem',
author_email='[email protected]',
url='https://github.com/Avivsalem/ContextData',
packages=find_packages(include=[pkg_name, f'{pkg_name}.*']),
python_requires='>=3.7',
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
include_package_data=True,
)