|
17 | 17 |
|
18 | 18 | from setuptools import find_packages, setup
|
19 | 19 |
|
| 20 | +with open("README.md", "r") as fh: |
| 21 | + long_description = fh.read() |
20 | 22 |
|
21 | 23 | setup(
|
22 | 24 | name='compreface-sdk',
|
23 |
| - packages=find_packages(where='compreface', include=['examples']), |
| 25 | + packages=find_packages(exclude=("tests",)), |
24 | 26 | version='0.1.0',
|
25 |
| - license='apache-2.0', |
| 27 | + license='Apache License 2.0', |
26 | 28 | description='CompreFace Python SDK makes face recognition into your application even easier.',
|
| 29 | + long_description=long_description, |
| 30 | + long_description_content_type="text/markdown", |
27 | 31 | author='Artsiom Liubymov [email protected], Artsiom Khadzkou [email protected]',
|
28 | 32 |
|
29 | 33 | url='https://exadel.com/solutions/compreface/',
|
|
43 | 47 | classifiers=[
|
44 | 48 | 'Development Status :: 5 - Production/Stable',
|
45 | 49 | 'Intended Audience :: Developers',
|
| 50 | + 'Intended Audience :: Science/Research', |
| 51 | + 'Intended Audience :: Information Technology', |
| 52 | + 'Topic :: Software Development', |
46 | 53 | 'Topic :: Software Development :: Build Tools',
|
47 |
| - 'License :: OSI Approved :: Apache license 2.0', |
48 |
| - 'Programming Language :: Python :: 3.7+', |
| 54 | + 'Topic :: Software Development :: Libraries', |
| 55 | + 'Topic :: Scientific/Engineering :: Image Recognition', |
| 56 | + 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
| 57 | + 'License :: OSI Approved :: Apache Software License', |
| 58 | + 'Programming Language :: Python :: 3', |
| 59 | + 'Programming Language :: Python :: 3.7' |
49 | 60 | ],
|
50 | 61 | )
|
0 commit comments