-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.19 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
import codecs
import unittest
from setuptools import setup, Command
import sys
import fortress
#TODO: Tests
with codecs.open('README.md', 'r', 'utf-8') as fd:
setup(name='fortress',
version=fortress.__version__,
description='A formatter for Fortran code.',
long_description=fd.read(),
maintainer='F&R',
packages=['fortress', 'fortress.lib'],
classifiers=[
'Development Status :: 2 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
],
entry_points={'console_scripts': ['fortress = fortress:run_main'],})