-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
30 lines (29 loc) · 856 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
import setuptools
setuptools.setup(
name='gfd',
version='0.0.1',
license='Apache License 2.0',
author='',
author_email='',
description='mtkresearch',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='',
packages=setuptools.find_packages(),
python_requires='>=3.6',
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[
],
extras_require={
}
)