-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert(source='README.md', format='markdown_github', to='rst', outputfile='README.rst')
except (IOError, ImportError):
description = open('README.md').read()
version = '0.1'
setup(
name='package_name',
packages=['package_name'],
version=version,
description='small package description',
long_description=description,
author='Author Name',
author_email='[email protected]',
url='https://github.com/gitHubUser/package_name',
download_url='https://github.com/gitHubUser/package_name/archive/{}.tar.gz'.format(version),
keywords=['key1', 'key2', 'key3'],
license='MIT',
classifiers=[ # look here https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Browsers',
],
install_requires=[
'selenium'
],
)