You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
422 B
20 lines
422 B
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
config = {
|
|
'description': 'My Project',
|
|
'author': 'My Name',
|
|
'url': 'URL to get it at.',
|
|
'download_url': 'Where to download it.',
|
|
'author_email': 'My email.',
|
|
'version': '0.1',
|
|
'install_requires': ['nose'],
|
|
'packages': ['NAME'],
|
|
'scripts': [],
|
|
'name': 'projectname'
|
|
}
|
|
|
|
setup(**config)
|
|
|
|
|