-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (23 loc) · 856 Bytes
/
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
# setup.py
#
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name = 'cumberbatch',
packages = ['cumberbatch'],
version = '0.5',
license = 'Apache License 2.0',
description = 'Generate names similar to Benedict Cumberbatch.',
long_description=(read('README.rst')),
author = 'Brandon Istenes',
author_email = '[email protected]',
url = 'https://github.com/brandones/cumberbatch',
download_url = 'https://github.com/brandones/cumberbatch/tarball/0.5',
keywords = ['names', 'testing', 'fixtures', 'generation', 'generator', 'benedict', 'cumberbatch'],
classifiers = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License']
)