|
14 | 14 | with open('dev-requirements.txt') as dev_requirements: |
15 | 15 | DEV_REQUIRES = dev_requirements.readlines() |
16 | 16 |
|
17 | | -with open('README.rst') as f: |
18 | | - LONG_DESCRIPTION = f.read() |
19 | | - |
20 | 17 | setup( |
21 | | - name='VWS Python', |
22 | 18 | version=versioneer.get_version(), # type: ignore |
23 | 19 | cmdclass=versioneer.get_cmdclass(), # type: ignore |
24 | | - author='Adam Dangoor', |
25 | | - author_email='adamdangoor@gmail.com', |
26 | | - description='Interact with the Vuforia Web Services (VWS) API.', |
27 | | - long_description=LONG_DESCRIPTION, |
28 | | - license='MIT', |
29 | | - packages=find_packages(where='src'), |
30 | | - zip_safe=False, |
31 | | - url='http://vws-python.readthedocs.io', |
32 | | - keywords='vuforia fake client', |
33 | | - package_dir={'': 'src'}, |
34 | | - include_package_data=True, |
35 | 20 | package_data={'vws': ['py.typed']}, |
36 | 21 | install_requires=INSTALL_REQUIRES, |
37 | | - extras_require={ |
38 | | - 'dev': DEV_REQUIRES, |
39 | | - }, |
40 | | - classifiers=[ |
41 | | - 'Operating System :: POSIX', |
42 | | - 'Environment :: Web Environment', |
43 | | - 'License :: OSI Approved :: MIT License', |
44 | | - 'Programming Language :: Python :: 3.7', |
45 | | - 'Development Status :: 3 - Alpha', |
46 | | - ], |
| 22 | + extras_require={'dev': DEV_REQUIRES}, |
47 | 23 | ) |
0 commit comments