-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 798 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 798 Bytes
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
description = 'Import modules from Github'
long_description = open('README.rst').read() if os.path.exists('README.rst') else ""
version = "0.0.1"
setup(name='github_import',
version=version,
packages=find_packages(),
author='Sebastian Pawluś',
author_email='sebastian.pawlus@gmail.com',
url='http://readthedocs.org/docs/django-rocket/',
description=description,
long_description=long_description,
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)