-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (22 loc) · 719 Bytes
/
setup.py
File metadata and controls
29 lines (22 loc) · 719 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import wordlist
install_requires = []
config = {
'description': 'Wordlist generator, creates dictionaries of words',
'author': 'Rexos',
'url': 'https://github.com/rexos/wordlist',
'download_url': 'https://github.com/rexos/wordlist/tarball/1.0',
'author_email': 'alex.pellegrini@live.com',
'version': wordlist.__version__,
'install_requires': install_requires,
'packages': ['wordlist'],
'scripts': ['bin/wordlist'],
'keywords': ['words', 'generator', 'wordlist'],
'name': wordlist.__title__
}
setup(**config)
#TODO: change the download_url
#TODO: change author author_email