-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 740 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 740 Bytes
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
from setuptools import setup, find_packages
import os
# Look for requirements file
parent_folder = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(parent_folder, 'requirements.txt')) as req:
INSTALL_REQUIRES = req.read().split('\n')
setup(
author='Whitman Bohorquez',
author_email='whitman-2@hotmail.com',
name='simpleid',
license='',
description='64bits integer ids for any database vendor',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.7.0',
install_requires=INSTALL_REQUIRES,
classifiers=[
'Development Status :: Alpha',
'Programming Language :: Python',
'Intended Audience :: Developers',
],
)