forked from yassnet/py-students-classrooms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 735 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 os
from setuptools import setup
# @author Yassir Aguila
# @version $Revision: 1.0 $ $Date: 2017-04-05
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="py-students-classrooms",
version="1.0",
author="Yassir Aguila",
author_email="yass.net@gmail.com",
description="Useful library made in python to handle students and classrooms",
license="MIT",
keywords="example geolocation util utm",
url="https://github.com/yassnet/py-students-classrooms",
packages=['src'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 1.0 release",
"Topic :: Utilities",
"License :: MIT License",
],
)