-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (22 loc) · 893 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
import sys
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
if sys.version_info < (3, 4):
sys.exit("Project requires python 3.4 or above")
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name="Matlab Usage Stats",
version="1.0",
description="Django based Matlab Licence Usage statistics agregator",
long_description=README,
url="https://github.com/akshaykhadse/matlab-usage-stats",
author="Akshay Khadse, Raghav Gupta",
author_email="[email protected], [email protected]",
license="BSD License",
install_requires=requires,
packages=find_packages(),
)