-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 792 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 792 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
# See http://pythonhosted.org/an_example_pypi_project/setuptools.html
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'hello_github',
version = '0.1',
author = 'Celia Oakley',
author_email = 'celia.oakley@alumni.stanford.edu',
description = 'A test package',
keywords = ['testing', 'hello', 'example'],
url = 'https://github.com/celiao/hello_github', # URL to github repo
download_url = 'https://github.com/celiao/hello_github/tarball/0.1',
packages = ['hello_github'],
long_description=read('README.rst'),
install_requires = ['requests>=0.11.1'],
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
],
)