|
| 1 | +from distutils.core import setup |
| 2 | +setup( |
| 3 | + name = 'pyOFSC', # How you named your package folder (MyLib) |
| 4 | + packages = ['pyOFSC'], # Chose the same as "name" |
| 5 | + version = '0.1', # Start with a small number and increase it with every change you make |
| 6 | + license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository |
| 7 | + description = 'Python Wrapper for Oracle Field Service Cloud API', # Give a short description about your library |
| 8 | + author = 'Borja Toron', # Type in your name |
| 9 | + author_email = 'borja.toron@gmail.com', # Type in your E-Mail |
| 10 | + url = 'https://github.com/btoron/pyOFSC', # Provide either the link to your github or to your website |
| 11 | + download_url = 'https://github.com/btoron/pyOFSC/archive/v_01.tar.gz', # I explain this later on |
| 12 | + keywords = ['OFSC', 'Python', 'ORACLE FIELD SERVICE CLOUD'], # Keywords that define your package best |
| 13 | + install_requires=[ # I get to this in a second |
| 14 | + 'validators', |
| 15 | + 'beautifulsoup4', |
| 16 | + ], |
| 17 | + classifiers=[ |
| 18 | + 'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package |
| 19 | + 'Intended Audience :: Developers', # Define that your audience are developers |
| 20 | + 'Topic :: Software Development :: Build Tools', |
| 21 | + 'License :: OSI Approved :: MIT License', # Again, pick a license |
| 22 | + 'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support |
| 23 | + 'Programming Language :: Python :: 3.4', |
| 24 | + 'Programming Language :: Python :: 3.5', |
| 25 | + 'Programming Language :: Python :: 3.6', |
| 26 | + 'Programming Language :: Python :: 3.7', |
| 27 | + ], |
| 28 | +) |
0 commit comments