-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 769 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (24 loc) · 769 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
27
28
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as fh:
readme = fh.read()
setup(
name='pedis',
version=__import__('pedis').__version__,
description='pedis',
long_description=readme,
author='Hossein Fakhari',
author_email='fakhari.hossein@gmail.com',
url='https://github.com/semilanceata/pedis/',
packages=[],
py_modules=['pedis'],
classifiers=[
'Development Status :: 1 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
scripts=['pedis.py'],
test_suite='tests')