|
| 1 | +from setuptools import setup |
| 2 | + |
| 3 | + |
| 4 | +try: |
| 5 | + from m2r import parse_from_file |
| 6 | + long_description = parse_from_file('README.md') |
| 7 | +except: |
| 8 | + long_description = '' |
| 9 | + |
| 10 | +setup( |
| 11 | + name='PySelenium', |
| 12 | + license='MIT License', |
| 13 | + packages=['pyselenium'], |
| 14 | + version='1.0.2', |
| 15 | + description='A wrapper for Selenium to allow easy development of automated tests for the web', |
| 16 | + author='Felipe Fiali de Sá', |
| 17 | + |
| 18 | + url='https://github.com/felipefiali/PySelenium', |
| 19 | + download_url='https://github.com/felipefiali/PySelenium/archive/1.0.2.tar.gz', |
| 20 | + keywords=['testing', 'test-automation', 'selenium', 'web-automation'], |
| 21 | + long_description=long_description, |
| 22 | + platforms=[ |
| 23 | + 'Windows', |
| 24 | + 'Linux', |
| 25 | + 'MacOS' |
| 26 | + ], |
| 27 | + classifiers=[ |
| 28 | + 'License :: OSI Approved :: MIT License', |
| 29 | + 'Intended Audience :: Developers', |
| 30 | + 'Development Status :: 5 - Production/Stable', |
| 31 | + 'Programming Language :: Python', |
| 32 | + 'Programming Language :: Python :: 3.6', |
| 33 | + 'Operating System :: MacOS', |
| 34 | + 'Operating System :: Microsoft :: Windows', |
| 35 | + 'Operating System :: POSIX :: Linux', |
| 36 | + 'Operating System :: Unix', |
| 37 | + 'Topic :: Software Development', |
| 38 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 39 | + 'Topic :: Software Development :: Quality Assurance', |
| 40 | + 'Topic :: Software Development :: Testing', |
| 41 | + 'Topic :: Utilities' |
| 42 | + ], |
| 43 | + install_requires=[ |
| 44 | + "selenium" |
| 45 | + ] |
| 46 | +) |
0 commit comments