-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 823 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
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='Procyon',
version='0.0.1',
description='Package manager for OSTIS',
author='Nikita Grishko',
author_email='grin.minsk@gmail.com',
install_requires=[
'GitPython>=0.3.2.RC1',
'peewee>=1.0.0',
],
classifiers=[
'Development Status :: Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
],
url='https://github.com/Gr1N/procyon/',
packages=[
'procyon',
'procyon.pkg',
'procyon.repo',
],
)