|
5 | 5 | use_setuptools()
|
6 | 6 | from setuptools import setup, find_packages
|
7 | 7 |
|
8 |
| -__version__ = '0.0.1' |
| 8 | +__version__ = '0.0a0.dev1' |
| 9 | + |
| 10 | +with open("README.md", "r", encoding="utf-8") as fh: |
| 11 | + long_description = fh.read() |
9 | 12 |
|
10 | 13 | setup(
|
11 | 14 | name='useful_layers',
|
12 | 15 | packages=find_packages(),
|
13 | 16 | include_package_data=True,
|
14 | 17 | version=__version__,
|
15 | 18 | description="""
|
16 |
| -Useful Layers |
17 | 19 | Useful Layers is a torch based library containing some experimental,
|
18 | 20 | but useful layers
|
19 | 21 | """,
|
| 22 | + long_description=long_description, |
| 23 | + long_description_content_type="text/markdown", |
20 | 24 | author='Jan Ernsting',
|
21 | 25 |
|
22 |
| - url='https://github.com/jernsting/useful_layers.git', |
| 26 | + url='https://jernsting.github.io/useful_layers/', |
23 | 27 | download_url='https://github.com/jernsting/useful_layers/archive/' +
|
24 | 28 | __version__ + '.tar.gz',
|
25 | 29 | keywords=['machine learning', 'deep learning', 'experimental', 'science'],
|
26 |
| - classifiers=[], |
| 30 | + classifiers=[ |
| 31 | + 'Development Status :: 2 - Pre-Alpha', |
| 32 | + 'Intended Audience :: Developers', |
| 33 | + 'Intended Audience :: Science/Research', |
| 34 | + 'License :: OSI Approved :: MIT License', |
| 35 | + 'Programming Language :: Python :: 3', |
| 36 | + 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
| 37 | + ], |
| 38 | + project_urls={ |
| 39 | + "Source Code": "https://github.com/jernsting/useful_layers", |
| 40 | + "Documentation": 'https://jernsting.github.io/useful_layers/', |
| 41 | + "Bug Tracker": "https://github.com/jernsting/useful_layers/issues" |
| 42 | + } |
27 | 43 | )
|
0 commit comments