1- from distutils .core import setup
1+ from setuptools import setup
2+
23setup (
34 name = 'licensing' , # How you named your package folder (MyLib)
45 packages = ['licensing' ], # Chose the same as "name"
56 version = '0.51' , # Start with a small number and increase it with every change you make
67 license = 'MIT' , # Chose a license from here: https://help.github.com/articles/licensing-a-repository
7- description = 'Client library for Cryptolens licensing Web API.' , # Give a short description about your library
8+ #description_file = 'Client library for Cryptolens licensing Web API.', # Give a short description about your library
9+ long_description = 'Client library for Cryptolens Web API (software licensing).' ,
10+ long_description_content_type = "text/markdown" ,
811 author = 'Cryptolens AB' , # Type in your name
912 author_email = '[email protected] ' ,
# Type in your E-Mail 1013 url = 'https://cryptolens.io' , # Provide either the link to your github or to your website
11- download_url = 'https://github.com/Cryptolens/cryptolens-python/archive/v_51.tar.gz' , # I explain this later on
14+ download_url = 'https://github.com/Cryptolens/cryptolens-python/archive/v_51.tar.gz' ,
15+ project_urls = { # optional, shows on PyPI
16+ "Source" : "https://github.com/Cryptolens/cryptolens-python" ,
17+ "Tracker" : "https://github.com/Cryptolens/cryptolens-python/issues" ,
18+ },
1219 keywords = ['software licensing' , 'licensing library' , 'cryptolens' ], # Keywords that define your package best
1320 classifiers = [
1421 #'Development Status :: 5 - Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
1522 'Intended Audience :: Developers' , # Define that your audience are developers
1623 'Topic :: Software Development :: Build Tools' ,
17- 'License :: OSI Approved :: MIT License' , # Again, pick a license
1824 'Programming Language :: Python :: 3' , #Specify which pyhton versions that you want to support
1925 'Programming Language :: Python :: 3.4' ,
2026 'Programming Language :: Python :: 3.5' ,
3036 'Operating System :: Microsoft :: Windows' ,
3137 'Operating System :: MacOS :: MacOS X' ,
3238 ],
39+
3340)
0 commit comments