-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 846 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
28
29
30
31
32
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="cran-parser",
version="0.1",
author="James Blackburn",
author_email="blackburnfjames@gmail.com",
description=("A tool for creating install scripts from CRAN snapshots"),
license="BSD",
keywords="CRAN R",
url="https://github.com/jimbob88/cran_parser",
packages=['cran_parser', 'tests'],
long_description=read('README.MD'),
install_requires=read('requirements.txt'),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
entry_points={
'console_scripts': [
'cran_parser = cran_parser:main',
],
},
)