-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (33 loc) · 1.02 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
import os
from setuptools import setup, find_packages
def read(fname, lines=False):
f = open(os.path.join(os.path.dirname(__file__), fname))
if lines:
return [x.strip() for x in f.readlines()]
else:
return f.read()
setup(
name="atlas_core",
version="v2.3.1",
author="Mali Akmanalp <Harvard CID>",
description=("Core building blocks for atlas projects at CID."),
url="http://github.com/cid-harvard/atlas_core",
packages=find_packages(exclude=["atlas_core.sample"]),
install_requires=[
"Flask>=0.12.2,<2",
"SQLAlchemy>=1.1.14,<2",
"flask-sqlalchemy>=2.0,<3",
"toastedmarshmallow==0.2.6",
"lima>=0.5,<1",
"six>=1.0.0,<2",
],
long_description=read("README.md"),
classifiers=[
"Framework :: Flask",
"Environment :: Web Environment",
"Programming Language :: Python :: 3.4",
"Development Status :: 3 - Alpha",
"Topic :: Internet",
"License :: OSI Approved :: BSD License",
],
)