| Total Complexity | 0 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import os |
||
| 2 | import setuptools |
||
| 3 | |||
| 4 | SETUPDIR = os.path.dirname(__file__) |
||
| 5 | PKGDIR = os.path.join(SETUPDIR, 'src') |
||
| 6 | |||
| 7 | with open('README.md', 'r') as f: |
||
| 8 | long_description = f.read() |
||
| 9 | |||
| 10 | |||
| 11 | setuptools.setup( |
||
| 12 | name='nextcloud', |
||
| 13 | version='0.0.1', |
||
| 14 | author='EnterpriseyIntranet', |
||
| 15 | description="Python wrapper for NextCloud api", |
||
| 16 | long_description=long_description, |
||
| 17 | long_description_content_type="text/markdown", |
||
| 18 | url="https://github.com/EnterpriseyIntranet/nextcloud-API", |
||
| 19 | packages=setuptools.find_packages(PKGDIR), |
||
| 20 | include_package_data=True, |
||
| 21 | install_requires=['requests'], |
||
| 22 | package_dir={'': PKGDIR}, |
||
| 23 | classifiers=[ |
||
| 24 | 'Programming Language :: Python :: 3.6', |
||
| 25 | 'Programming Language :: Python :: 3.7', |
||
| 26 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
||
| 27 | "Operating System :: OS Independent" |
||
| 28 | ], |
||
| 30 |