- Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
19 lines (17 loc) · 511 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 511 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
try:
fromsetuptoolsimportsetup
exceptImportError:
fromdistutils.coreimportsetup
config= {
'description': 'A simple text adventure to help me learn Python',
'author': 'Russell Williams',
'url':'https://github.com/Transcriptase/Game',
'download': 'https://github.com/Transcriptase/Game',
'author_email': 'russell.d.williams@gmail.com',
'version': '0.1',
'install_requires': ['nose'],
'packages':['Game'],
'scripts':[],
'name': 'Game'
}
setup(**config)