-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
55 lines (49 loc) · 1.7 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#! /usr/bin/env python
#
# Copyright (C) 2013-2015 Russell Poldrack <[email protected]>
# some portions borrowed from https://github.com/mwaskom/lyman/blob/master/setup.py
import os
from setuptools import setup, find_packages
descr = """autoCV: An automated CV generator"""
DISTNAME = "autocv"
DESCRIPTION = descr
LONGDESCRIPTION = "This package automatically generates an academic curriculum vita (CV) using a set of open APIs along with a set of local files."
MAINTAINER = 'Russ Poldrack'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'MIT'
URL = 'https://github.com/poldrack/autoCV'
DOWNLOAD_URL = 'https://github.com/poldrack/autoCV'
VERSION = '1.3.3'
if __name__ == "__main__":
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
setup(
name=DISTNAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONGDESCRIPTION,
license=LICENSE,
version=VERSION,
url=URL,
download_url=DOWNLOAD_URL,
packages=find_packages(),
package_data={'autocv': ['templates/*', 'testdata/*']},
scripts=[
'bin/autoCV', 'bin/get_NSF_collaborators'],
install_requires=[
"pandas",
"numpy",
"Bio",
"requests",
"crossrefapi",
"scholarly",
"pypatent",
"pytest"],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'])