-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (36 loc) · 1.33 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
import os
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
HERE = abspath(dirname(__file__))
os.chdir(HERE) # allow setup.py to be run from any path
with open(join(HERE, 'README.md')) as readme:
README = readme.read()
with open(join(HERE, 'requirements.txt')) as requirements:
REQUIREMENTS = list(requirements.readlines())
setup(
name='django-realme',
version='1.0.1',
packages=find_packages(exclude=('samples', 'example')),
include_package_data=True,
description='A Django app client for the RealMe service',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/ServiceInnovationLab/django-realme',
author='Service Innovation Lab',
author_email='',
license='GPL',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=REQUIREMENTS,
)