-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (28 loc) · 1018 Bytes
/
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
29
30
31
32
33
#!/usr/bin/env python
import os.path
import sys
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()
sys.path.insert(0, this_directory)
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='classification-utils',
version=0.1,
description='Huridocs Classifications utils',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/huridocs/classification-utils',
author='Huridocs',
packages=['models', 'utils'],
# This would reduce pollution of the root python namespace, but
# then relative imports in this code don't work...
# packages=['classification_utils.models', 'classification_utils.utils'],
# package_dir={'classification_utils': ''},
install_requires=requirements,
extras_require={},
python_requires='>=3.6',
entry_points={},
)