forked from harvardinformatics/python-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 631 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 631 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
'''
Created on March 7, 2017
Copyright (c) 2017
Harvard FAS Research Computing
All rights reserved.
@author: Aaron Kitzmiller
'''
import os
from setuptools import setup, find_packages
setup(
name = "ha",
version = "0.2.0",
author='Aaron Kitzmiller <aaron_kitzmiller@harvard.edu>',
author_email='aaron_kitzmiller@harvard.edu',
description='Harvard Annotator',
license='LICENSE.txt',
url='http://pypi.python.org/pypi/ha/',
packages = ['ha','ha.annotate'],
long_description='Harvard Annotator',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
],
)