Skip to content

Commit b412db2

Browse files
committed
v0.1a0 - Alpha Package Release
Update setup.py for alpha release and new package name.
1 parent 2d9153e commit b412db2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ def finalize_options(self):
1717
self.test_suite = True
1818

1919
def run_tests(self):
20-
#import here, cause outside the eggs aren't loaded
20+
# import here, cause outside the eggs aren't loaded
2121
import pytest
2222
errno = pytest.main(self.pytest_args)
2323
sys.exit(errno)
2424

25+
2526
setup(
26-
name='graphqllib',
27+
name='graphql-core',
2728
version='0.1a0',
28-
2929
description='GraphQL implementation for Python',
3030

31-
url='https://github.com/dittos/graphqllib',
31+
url='https://github.com/graphql-python/graphql-core',
3232

33-
author='Taeho Kim',
34-
author_email='dittos' '@' 'gmail.com',
33+
author='GraphQL Python ',
34+
author_email='me' '@' 'jh.gg',
3535

3636
license='MIT',
3737

@@ -53,7 +53,7 @@ def run_tests(self):
5353
packages=find_packages(exclude=['tests']),
5454

5555
install_requires=[],
56-
tests_require=['pytest>=2.7.3'],
56+
tests_require=['pytest>=2.7.3', 'gevent==1.1b5'],
5757

5858
cmdclass={'test': PyTest},
5959
)

0 commit comments

Comments
 (0)